home *** CD-ROM | disk | FTP | other *** search
- /* factory.h
- *
- * This is the standard controls factory that is
- * initialized when I'm started up
- */
-
- #ifndef __FACTORY_H__
- #define __FACTORY_H__
-
- #include <XView.h>
-
- /************************************************************************/
- /* */
- /* View Factory */
- /* */
- /************************************************************************/
-
- class XGIStdClassFactory : public XGViewFactory {
- public:
- XGView *CreateView(long,XGView *,XGArgStream &);
- };
-
- #endif // __FACTORY_H__
-
-